home *** CD-ROM | disk | FTP | other *** search
/ Aminet 31 / Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso / Aminet / util / libs / regex.lha / regex / STORMCinclude / clib / regex_protos.h
Encoding:
C/C++ Source or Header  |  1999-04-23  |  531 b   |  28 lines

  1. #ifndef  CLIB_REGEX_PROTOS_H
  2. #define  CLIB_REGEX_PROTOS_H
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8. #ifndef  LIBRARIES_REGEX_H
  9. #include <libraries/regex.h>
  10. #endif
  11.  
  12. int regcomp ( regex_t * , const char * , int );
  13. size_t regerror ( int , const regex_t * , char * , size_t );
  14. int regexec ( regex_t * , char * , size_t , regmatch_t * , int );
  15. void regfree ( regex_t * );
  16.  
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20.  
  21. #ifdef STORMPRAGMAS
  22. #ifndef _INCLUDE_PRAGMA_REGEX_LIB_H
  23. #include <pragma/regex_lib.h>
  24. #endif
  25. #endif
  26.  
  27. #endif     /* CLIB_REGEX_PROTOS_H */
  28.